home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
Apps
/
Utilities
/
Other
/
Briefcase
/
Help.h
< prev
next >
Wrap
Text File
|
1992-12-26
|
903b
|
34 lines
#import <objc/Object.h>
#import "MultApp.h"
@interface Help:Object
{
id helpScrollView; /* scrollView to put help text in */
id helpBrowser; /* NXBrowser of help topics */
id helpPanel; /* the help panel */
char helpDirectory[MAXPATHLEN+1]; /* the directory to find help files */
char noHelpFile[MAXPATHLEN+1]; /* the name of the "no help" file */
}
/* INIT/FREE METHODS */
- init;
- setHelpBrowser:anObject;
/* TARGET/ACTION METHODS */
- generalHelp:sender;
- browserHit:sender;
- print:sender;
- showHelpFile:(const char*)filename;
/* BROWSER DELEGATE METHODS */
- (int)browser:sender fillMatrix:matrix inColumn:(int)column;
- browser:sender loadCell:cell atRow:(int)row inColumn:(int)column;
- (BOOL)browser:sender selectCell:(const char *)title inColumn:(int)column;
/* WINDOW DELEGATE METHODS */
- windowWillResize:sender toSize:(NXSize *)frameSize;
@end